home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ WMP 2.xpl < prev    next >
Text File  |  1999-07-17  |  1KB  |  64 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="2"
  4. "UIPATH"="Internet\Windows Media Player"
  5. "NAME"="Extra Button"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.0"
  8. "TEXT 1"="Button Name"
  9. "TEXT 2"="Button URL"
  10. "DESCRIPTION 1"="Configure the extra button in WMP."
  11. "DESCRIPTION 2"="To hide the button again, clear the fields."
  12. "AUTHOR"="Xteq Systems"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  15.  
  16.  
  17. sPath="HKCU\Software\Policies\Microsoft\WindowsMediaPlayer\"
  18. sV1="ShowCaseButton"
  19. sV2="ShowCaseURL"
  20.  
  21.  
  22. Sub Plugin_Initialize 
  23.  s=RegReadValue(sPath & sV1)
  24.  SetUIElement 1,s
  25.  
  26.  s=RegReadValue(sPath & sV2)
  27.  SetUIElement 2,s
  28. End Sub
  29.  
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34.  
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  s=GetUIElement(1)
  38.  if len(s)=0 then
  39.     'If values exists, delete it
  40.     s=RegReadValue(sPath & sV1)
  41.     if IsEmpty(s)=false then Call RegDeleteValue(sPath & sV1)
  42.  else
  43.     Call RegWriteValue(sPath & sV1,s,1)
  44.  end if
  45.  
  46.  s=GetUIElement(2)
  47.  if len(s)=0 then
  48.     'If values exists, delete it
  49.     s=RegReadValue(sPath & sV2)
  50.     if IsEmpty(s)=false then Call RegDeleteValue(sPath & sV2)
  51.  else
  52.     Call RegWriteValue(sPath & sV2,s,1)
  53.  end if
  54.  
  55.  
  56. End Sub
  57.  
  58.  
  59. Sub Plugin_Terminate 
  60. End Sub
  61.  
  62.  
  63.  
  64.